home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / uupc11ys.zip / LIB / IMPORT.H < prev    next >
Text File  |  1992-11-27  |  1KB  |  28 lines

  1. /*--------------------------------------------------------------------*/
  2. /*    i m p o r t . h                                                 */
  3. /*--------------------------------------------------------------------*/
  4.  
  5. /*--------------------------------------------------------------------*/
  6. /*    Constants used for mapping between character sets; changing     */
  7. /*    any of these parameters requires clearing all the files from    */
  8. /*    UUPC/extended spool directories.                                */
  9. /*--------------------------------------------------------------------*/
  10.  
  11. #define DOSCHARS  "!#$%&'()-0123456789@^_`abcdefghijklmnopqrstuvwxyz{}~"
  12.                               /* List of allowed characters in MS-DOS
  13.                                  file names; from Page 1.15 of Zenith
  14.                                  MS-DOS 3 manual                     */
  15. #define UNIX_START_C '#'      /* First character in the UNIX char set */
  16.                               /* we map to the DOS character set      */
  17. #define UNIX_END_C   'z'      /* last UNIX char we map                */
  18.  
  19. /*--------------------------------------------------------------------*/
  20. /*    Routines defined in import.c                                    */
  21. /*--------------------------------------------------------------------*/
  22.  
  23. void importpath(char *host,
  24.                 char const *canon,
  25.                 char const *remote);
  26.  
  27. boolean ValidDOSName( const char *s);
  28.